From: Philip Withnall Date: Thu, 21 Dec 2017 18:01:44 +0000 (+0000) Subject: build: Fix typo in -Wparentheses warning X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~27^2~27 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=cac42bb6f576696033e70a2b1cb2c947b95e2306;p=ostree.git build: Fix typo in -Wparentheses warning GCC supports -Wparentheses, not -Wparenthesis. https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wno-parentheses Signed-off-by: Philip Withnall Closes: #1388 Approved by: jlebon --- diff --git a/configure.ac b/configure.ac index 697007d5..fa436ea6 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ CC_CHECK_FLAGS_APPEND([WARN_CFLAGS], [CFLAGS], [\ -Werror=switch \ -Werror=overflow \ -Werror=int-conversion \ - -Werror=parenthesis \ + -Werror=parentheses \ -Werror=undef \ -Werror=incompatible-pointer-types \ -Werror=misleading-indentation \